/* assets/css/modules/landing.css */

:root {
    --primary-green: #0e4c48;
    --secondary-green: #062b29;
    --accent-gold: #fbbf24;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-mint: rgba(14, 76, 72, 0.04); /* Light Mint for Pricing */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    background-color: #fff;
}

/* --- UTILITIES --- */
.section-padding { padding: 100px 0; }
.section-bg-light { background-color: var(--bg-light); }
.section-bg-mint { background-color: var(--bg-mint); }

.text-primary-green { color: var(--primary-green); }

/* --- NAVBAR (Glassmorphism) --- */
.landing-navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.landing-logo { height: 40px; object-fit: contain; }
.nav-link { 
    font-weight: 600; 
    color: var(--text-dark) !important; 
    margin: 0 10px; 
    font-size: 0.95rem; 
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary-green) !important; }

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #0e4c48 0%, #022c29 100%);
    padding: 180px 0 100px; /* Extra top padding for fixed nav */
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text { 
    font-size: 1.2rem; 
    color: #94a3b8; 
    margin-bottom: 2rem; 
    max-width: 600px; 
    line-height: 1.7; 
}

.hero-img-container {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(14, 76, 72, 0.08);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.section-title { font-weight: 800; font-size: 2.5rem; margin-bottom: 15px; color: var(--text-dark); }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; }

/* --- HOW IT WORKS (STEPPED MODEL) --- */
.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: 0.3s ease;
}
.step-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: transparent;
    transform: translateY(-5px);
}
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(14, 76, 72, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}
/* Updated Icon Size */
.step-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Bigger Icon */
    color: var(--primary-green);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(14, 76, 72, 0.05);
    position: relative;
    z-index: 1;
}

/* --- JOB CARDS --- */
.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.job-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
    border-color: transparent; 
}
.company-logo-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    font-weight: 800;
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.company-logo-img { width: 100%; height: 100%; object-fit: contain; }

/* --- PRICING CARDS --- */
.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    background: white;
    position: relative;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.pricing-card.recommended { border: 2px solid var(--primary-green); background: #fafdfc; }

.badge-recommended {
    position: absolute; top: 20px; right: 20px;
    background: var(--primary-green); color: white;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.price-val { font-size: 3rem; font-weight: 800; color: var(--primary-green); }
.price-period { color: #94a3b8; font-weight: 500; font-size: 1.1rem; }

.feature-list { list-style: none; padding: 0; margin: 30px 0; flex-grow: 1; }
.feature-list li { margin-bottom: 12px; color: var(--text-muted); display: flex; align-items: center; font-size: 0.95rem; }
.feature-list li i { color: var(--primary-green); margin-right: 10px; flex-shrink: 0; }

/* --- BLOG CARDS --- */
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: transparent; }
.blog-thumb { height: 200px; background: #e2e8f0; position: relative; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat-badge {
    position: absolute; top: 15px; left: 15px;
    background: white; color: var(--text-dark);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 5px 12px; border-radius: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.blog-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-title a { color: var(--text-dark); text-decoration: none; transition: 0.2s; font-weight: 700; font-size: 1.1rem; }
.blog-title a:hover { color: var(--primary-green); }

/* --- FAQ --- */
.accordion-item { border: 1px solid #e2e8f0; border-radius: 12px !important; margin-bottom: 15px; overflow: hidden; }
.accordion-button { font-weight: 600; padding: 20px; background: white; box-shadow: none !important; font-size: 1.05rem; }
.accordion-button:not(.collapsed) { background-color: #f8fafc; color: var(--primary-green); }
.accordion-body { color: var(--text-muted); line-height: 1.6; }

/* --- FOOTER --- */
.footer { background: #051f1e; color: #94a3b8; padding: 80px 0 30px; font-size: 0.9rem; }
.footer-title { color: white; font-weight: 700; margin-bottom: 20px; font-size: 1.1rem; }
.footer ul { padding: 0; list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
.footer a:hover { color: white; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; padding-top: 30px; }

/* assets/css/modules/landing.css */

/* ... (Keep all previous styles for Navbar, Hero, etc.) ... */

/* --- SINGLE POST OPTIMIZATIONS --- */
.article-header {
    padding: 120px 0 60px; /* Increased top padding for fixed nav */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 25px;
}

.article-meta img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Featured Image */
.article-img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 550px; /* Limit height on large screens */
    object-fit: cover; /* Crop gracefully on desktop */
    border-radius: 24px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Content Typography & Padding */
.article-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    padding: 0 10px; /* Base padding */
}

.article-content h2 { margin-top: 50px; margin-bottom: 25px; font-weight: 800; color: var(--text-dark); font-size: 1.8rem; }
.article-content h3 { margin-top: 40px; margin-bottom: 20px; font-weight: 700; color: var(--text-dark); font-size: 1.5rem; }
.article-content p { margin-bottom: 25px; }
.article-content ul, .article-content ol { margin-bottom: 25px; padding-left: 20px; }
.article-content li { margin-bottom: 10px; }
.article-content img { max-width: 100%; border-radius: 12px; margin: 30px 0; height: auto; }
.article-content blockquote {
    border-left: 5px solid var(--primary-green);
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin: 30px 0;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .article-header { padding: 100px 0 40px; }
    .article-header h1 { font-size: 2rem; }
    
    .article-img {
        max-height: auto; /* Let it grow naturally on mobile */
        border-radius: 16px;
        margin-bottom: 30px;
    }
    
    .article-content {
        font-size: 1.05rem;
        padding: 0 15px; /* Extra side padding for mobile text */
    }
}

/* Share Box */
.share-box {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
    margin: 80px 0 60px;
    text-align: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--text-dark);
    margin: 0 8px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.share-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(14, 76, 72, 0.2);
}
/* --- BLOG CARDS --- */
.blog-card-smart {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card-smart:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-thumb-smart { height: 180px; background: #e2e8f0; position: relative; overflow: hidden; }
.blog-thumb-smart img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card-smart:hover .blog-thumb-smart img { transform: scale(1.08); }

.blog-content-smart { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta-smart { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 600; letter-spacing: 0.5px; }
.blog-title-smart { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-title-smart a { color: var(--text-main); text-decoration: none; transition: 0.2s; }
.blog-title-smart a:hover { color: var(--primary-green); }

/* --- BLOG POST SINGLE (FIXED) --- */
.article-header {
    padding: 160px 0 60px; /* Clear fixed nav */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.article-meta img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Image */
.article-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .article-img {
        max-height: 550px; /* Cap height on large screens */
        object-fit: cover;
        object-position: center;
    }
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    padding: 0 10px;
}
.article-content h2 { margin-top: 40px; margin-bottom: 20px; }
.article-content img { max-width: 100%; border-radius: 12px; margin: 20px 0; }

/* Share Buttons */
.share-box {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
    margin: 60px 0;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 76, 72, 0.2);
}