/* styles.css - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

/* Main-container */
.main-container{
    margin-left: 10vw;
    margin-right: 10vw;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 4px;
}

.logo-icon-small {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
}

.logo-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3366ff;
}

.nav-menu a:after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.3rem;
    opacity: 0.6;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    margin-top: 1rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.dropdown-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-outline {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: #3366ff;
    color: #3366ff;
}

.btn-primary {
    background: #3366ff;
    color: white;
}

.btn-primary:hover {
    background: #2952cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 102, 255, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
}

.btn-warning {
    background: #ffcc66;
    color: #1a1a1a;
}

.btn-warning:hover {
    background: #ffbb33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 102, 0.3);
}

.btn-purple {
    background: #6644ff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
}

.btn-purple:hover {
    background: #5533dd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 68, 255, 0.3);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(180deg, #e8f4ff 0%, #ffffff 100%);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.resume-preview {
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    position: relative;
    transform: rotate(-2deg);
}

.preview-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.preview-photo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.preview-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.preview-info p {
    color: #666;
    font-size: 0.9rem;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-section {
    height: 80px;
    background: linear-gradient(90deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 5px;
}

.resume-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #e8f4ff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    transform: rotate(5deg);
    font-size: 0.95rem;
    line-height: 1.4;
}

.ai-help-box {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.ai-help-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.ai-help-box p {
    font-size: 0.85rem;
    color: #666;
}

/* AI Feature Section */
.ai-feature {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.feature-card {
    background: #f0f4ff;
    border-radius: 15px;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 4rem 2rem;
}

.how-it-works h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 4rem;
    display: block;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #3366ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
}

.step-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

/* Video Section */
.video-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.video-container {
    background: linear-gradient(135deg, #2d3561 0%, #1f2544 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-content {
    color: white;
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Companies Section */
.companies {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.companies h4 {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.company-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.company-logo:hover {
    opacity: 1;
}

/* Rating Section */
.rating-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.rating-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Stats Section */
.stats-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.stats-content {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f4ff 100%);
    border-radius: 20px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-text h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats-text p {
    font-size: 1.2rem;
    color: #555;
}

.stats-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resume-samples {
    display: flex;
    gap: 1rem;
}

.sample-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 150px;
}

.sample-content {
    height: 200px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 5px;
}

.download-icon {
    position: absolute;
    bottom: -30px;
    background: #3366ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.3);
}

/* Templates Section */
.templates-intro {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.templates-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.templates-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.templates-intro a {
    color: #3366ff;
    text-decoration: none;
    font-weight: 600;
}

.templates-intro a:hover {
    text-decoration: underline;
}

.templates-showcase {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.template-card {
    text-align: center;
}

.template-preview {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.template-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.template-header {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: white;
}

.template-photo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.template-info h3 {
    font-size: 1.1rem;
    text-align: left;
}

.template-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.template-line {
    height: 10px;
    background: #e8e8e8;
    border-radius: 3px;
}

.template-line.short {
    width: 60%;
}

.template-zoom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #3366ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.template-zoom:hover {
    transform: scale(1.1);
}

.template-card h4 {
    font-size: 1.2rem;
    color: #3366ff;
}

/* Benefits Section */
.benefits-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.benefits-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    max-width: 900px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #3366ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(51, 102, 255, 0.3);
    transition: all 0.3s;
    font-size: 1.2rem;
    font-weight: 700;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.4);
}

.scroll-text {
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .template-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .template-grid,
    .benefits-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .company-logos {
        gap: 2rem;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}