/* ===================================
   SIDE HUSTLES GUIDE - WORKFREE.ME 2025
   Complete Guide to Building Income Streams
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.75rem; 
    font-weight: 800; 
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 { 
    font-size: 2.25rem; 
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

h3 { 
    font-size: 1.75rem; 
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 { 
    font-size: 1.375rem; 
    font-weight: 600;
    margin-bottom: 1rem;
}

h5 { 
    font-size: 1.125rem; 
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h6 { 
    font-size: 1rem; 
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Large text for emphasis */
.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* ===================================
   PROGRESS BAR
   =================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    z-index: 9999;
    transition: width 0.3s ease;
    width: 0%;
}

/* ===================================
   NAVIGATION SYSTEM
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo .logo-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1d4ed8;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo .logo-link:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #1d4ed8;
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 0.75rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #2d3748;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.1);
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #2d3748;
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 5rem;
    margin-top: 80px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-breadcrumb {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.hero-breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-separator {
    color: #94a3b8;
    font-weight: 600;
}

.current-page {
    color: #3b82f6;
    font-weight: 600;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.title-highlight {
    display: block;
    color: #3b82f6;
    font-size: 0.7em;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #2d3748;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 220px;
    justify-content: center;
    letter-spacing: -0.01em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 15px 0 rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
    background: #ffffff;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
}

/* ===================================
   MAIN CONTENT LAYOUT
   =================================== */
.main-content {
    margin-top: 3rem;
    margin-bottom: 6rem;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.intro-section,
.content-section {
    margin-bottom: 3rem;
    scroll-margin-top: 80px;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7ff 0%, #f3f4f6 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px 0 rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.stat-source {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

/* Alert Boxes */
.alert-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    border-left: 5px solid;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.alert-box.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.alert-box.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}

.alert-box.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-content p {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* ===================================
   SIDE HUSTLE CARDS AND CATEGORIES
   =================================== */
.hustle-category {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

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

.hustle-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hustle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.15);
}

.hustle-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hustle-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.hustle-title h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.income-potential {
    font-family: 'Poppins', sans-serif;
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    display: inline-block;
}

.hustle-details {
    padding: 1rem 2rem 2rem;
}

.hustle-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hustle-description {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hustle-strategy {
    font-family: 'Poppins', sans-serif;
    padding: 1.25rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d3748;
}

.hustle-strategy strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ===================================
   SIDE HUSTLE SELECTOR TOOL
   =================================== */
.hustle-selector-tool {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
}

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

.selector-header h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.selector-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    height: 100%;
    transition: width 0.3s ease;
    width: 0%;
}

.selector-content {
    min-height: 300px;
    margin-bottom: 2rem;
}

.selector-question h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.selector-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.selector-option {
    display: block;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.selector-option:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: translateY(-2px);
}

.selector-option.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.selector-option input {
    display: none;
}

.selector-option span {
    font-weight: 500;
    color: #1a1a1a;
}

.selector-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.recommendation-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recommendation-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.125rem;
}

.recommendation-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommendation-details span {
    font-size: 0.9rem;
    color: #64748b;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6b7280;
    color: #ffffff;
}

.btn-secondary:hover:not(:disabled) {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* Download notifications */
.download-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #10b981;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.download-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.download-btn.success {
    background: #10b981 !important;
    color: #ffffff !important;
}

/* ===================================
   NEW SECTION STYLES
   =================================== */

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 2.25rem;
    margin-top: 0;
}

.section-header p {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Selector Section */
.selector-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* Hustles Section */
.hustles-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.hustle-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.hustle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hustle-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.hustle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hustle-badge {
    background: #3b82f6;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hustle-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    margin-top: 0;
}

.hustle-income {
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hustle-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hustle-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hustle-meta span {
    background: #f1f5f9;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.calculator-tool {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calculator-results {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.result-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

/* Resources Section */
.resources-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.resource-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.resource-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-top: 0;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-btn {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.download-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.selector-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.selector-intro p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.selector-step {
    display: none;
    text-align: center;
}

.selector-step.active {
    display: block;
}

.selector-step h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.selector-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.selector-btn {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #2d3748;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.selector-btn:hover {
    border-color: #3b82f6;
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px 0 rgba(59, 130, 246, 0.2);
}

.selector-btn.selected {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #3b82f6;
    color: #ffffff;
}

.selector-results {
    text-align: center;
}

.recommendations {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.recommendation-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.recommendation-item h4 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.recommendation-item .income {
    color: #059669;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recommendation-item p {
    color: #4a5568;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===================================
   STRATEGY FRAMEWORK
   =================================== */
.strategy-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.strategy-intro p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.strategy-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.strategy-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.strategy-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-actions {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.step-actions strong {
    color: #1a1a1a;
    font-weight: 700;
}

.success-metrics {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.success-metrics h3 {
    text-align: center;
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-item {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
}

.metric-label {
    font-family: 'Poppins', sans-serif;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-target {
    font-family: 'Poppins', sans-serif;
    color: #059669;
    font-size: 1.5rem;
    font-weight: 800;
}

/* ===================================
   DOWNLOADABLE RESOURCES
   =================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.15);
}

.resource-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.resource-header h3 {
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.resource-content {
    padding: 2rem;
}

.resource-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.download-btn {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 15px 0 rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 0 rgba(59, 130, 246, 0.4);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    margin-top: 8rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    padding: 5rem 0 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 350px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-link:hover {
    color: #93c5fd;
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 2.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    font-family: 'Poppins', sans-serif;
    color: #9ca3af;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-link {
    font-family: 'Poppins', sans-serif;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: #d1d5db;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-content {
    margin-top: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.about-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.12);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.375rem;
    margin-top: 0;
}

.about-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-content {
    margin-top: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-size: 1.375rem;
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #64748b;
    font-size: 0.95rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hustle-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .hustle-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: left;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        padding: 2.5rem;
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1.25rem 0;
        font-size: 1.2rem;
        color: #1a1a1a;
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #3b82f6;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 12px;
        margin-top: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 1.25rem;
    }
    
    .dropdown-link {
        padding: 1rem;
        color: #4a5568;
        font-size: 1.05rem;
        font-weight: 500;
    }
    
    .dropdown-link:hover {
        background: #e2e8f0;
        transform: none;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
    }
    
    .hustle-selector-tool {
        padding: 2rem;
    }
    
    .selector-options {
        flex-direction: column;
        align-items: center;
    }
    
    .selector-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .hustle-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        padding: 2rem 1.25rem;
    }
    
    .footer-container {
        padding: 0 1.25rem;
    }
    
    .hustle-selector-tool {
        padding: 1.5rem;
    }
    
    .hustle-card {
        margin-bottom: 1.5rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .hero-section,
    .footer,
    .download-btn,
    .cta-button {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
    }
    
    .hustle-card,
    .resource-card {
        page-break-inside: avoid;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States for Accessibility */
.cta-button:focus,
.download-btn:focus,
.nav-link:focus,
.selector-btn:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hustle-card,
    .resource-card {
        border-color: #000;
    }
    
    .nav-link {
        color: #000;
    }
    
    .hero-title,
    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }
}