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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #2c3e50;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #ecf0f1;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f39c12;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #ecf0f1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    color: #f39c12;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #2c3e50;
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #ecf0f1;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #f39c12;
}

.dropdown-menu a::after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* ===== JOURNEY BREADCRUMB ===== */
.journey-breadcrumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 2rem;
    text-align: center;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-step:hover {
    color: white;
}

.breadcrumb-step.active {
    color: #f39c12;
    font-weight: 600;
}

.breadcrumb-step .step-num {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.breadcrumb-step.active .step-num {
    background: #f39c12;
    color: #2c3e50;
}

.breadcrumb-arrow {
    color: rgba(255,255,255,0.4);
}

/* ===== CONTENT SECTIONS ===== */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667eea;
}

.content-section h3 {
    color: #667eea;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.content-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.content-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: #2c3e50;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
}

.highlight-box p {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-style: italic;
}

/* ===== QUOTE BOX ===== */
.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #f39c12;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.quote-box cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #888;
    font-style: normal;
}

/* ===== KEY INSIGHT BOX ===== */
.key-insight {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4e8f7 100%);
    border-left: 4px solid #3498db;
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.key-insight h4 {
    color: #2980b9;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-insight p {
    color: #2c3e50;
    margin-bottom: 0;
    font-weight: 500;
}

/* ===== IMPORTANT NOTE / WARNING ===== */
.important-note {
    background: #fff8e6;
    border: 1px solid #f39c12;
    border-left: 4px solid #f39c12;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.important-note h4 {
    color: #d68910;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.important-note p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== FINDING CARDS ===== */
.finding-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.finding-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.finding-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.finding-card.highlight {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-left-color: #f39c12;
}

.finding-card.highlight h3 {
    color: white;
}

.finding-card.highlight .finding-number {
    background: #f39c12;
    color: #2c3e50;
}

.finding-card.highlight p {
    color: rgba(255,255,255,0.95);
}

.finding-card.highlight li {
    color: rgba(255,255,255,0.9);
}

.finding-card.highlight strong {
    color: #f39c12;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-info {
    padding: 1.5rem;
}

.gallery-item-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== FRAMEWORK CARDS ===== */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.framework-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.framework-card h4 {
    color: #667eea;
    margin-bottom: 0.75rem;
}

.framework-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== METHODOLOGY GRID ===== */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.methodology-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.methodology-item .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.methodology-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.methodology-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== FORM STYLES ===== */
.form-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group label .optional {
    font-weight: normal;
    color: #888;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-group .helper-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Checkbox & Radio */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #667eea;
    flex-shrink: 0;
}

.checkbox-item label,
.radio-item label {
    font-weight: normal;
    color: #444;
    line-height: 1.5;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: white;
    color: #667eea;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #667eea;
}

/* ===== JOURNEY NAVIGATION ===== */
.journey-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.journey-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.journey-nav-btn.prev {
    background: #f8f9fa;
    color: #667eea;
}

.journey-nav-btn.prev:hover {
    background: #667eea;
    color: white;
}

.journey-nav-btn.next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.journey-nav-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.journey-nav-btn.home {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.journey-nav-btn.home:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

/* ===== BACK LINK ===== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #764ba2;
}

/* ===== PRIVACY SECTION ===== */
.privacy-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.resources-section h3 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.resources-section > p {
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resources-list {
    list-style: none;
    padding: 0;
}

.resources-list li {
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.resources-list a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.resources-list a:hover {
    text-decoration: underline;
}

.resources-list span {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2.5rem 2rem;
}

footer p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-note {
    opacity: 0.7;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 2rem 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes highlightFade {
    0% { background-color: #fff3cd; }
    100% { background-color: transparent; }
}

.highlighted {
    animation: highlightFade 3s ease;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .journey-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breadcrumb-content {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .finding-card h3 {
        flex-direction: column;
        align-items: flex-start;
    }
}