/* BluTik Website Styles - UPDATED VERSION */

/* CSS Variables for Brand Colors */
:root {
    --primary-blue: #007BFF;
    --gradient-start: #0056D2;
    --gradient-end: #00C6FF;
    --neutral-dark: #1C1C1C;
    --neutral-light: #F5F7FA;
    --accent-green: #00B589;
    --white: #FFFFFF;
    --text-primary: #1C1C1C;
    --text-secondary: #666666;
    --border-light: #E5E5E5;
    --shadow-light: rgba(0, 123, 255, 0.1);
    --shadow-medium: rgba(0, 123, 255, 0.15);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gradient-start);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    min-height: calc(100vh - 140px);
}

/* Grid Systems */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gradient-start);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.primary-nav a {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--primary-blue);
}

.primary-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - BLUE for all pages */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.trust-line {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.hero-visual {
    margin-top: 3rem;
}

.verification-preview {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.sample-profile {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--text-primary);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-green), var(--primary-blue));
    border-radius: 50%;
}

.profile-info h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1.25rem;
}

.inline-badge {
    height: 20px;
    width: auto;
}

/* Page Hero Section - REMOVED (all pages use .hero now) */

/* Common Section Styles */
section {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Pillars Section */
.pillars {
    background-color: var(--neutral-light);
}

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

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

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

/* UPDATED: Replace blue circles with blutik-fav.png */
.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-image: url('/assets/img/blutik-fav.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Values Section (About Page) */
.values {
    background-color: var(--white);
}

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

.value-card {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* UPDATED: Replace blue circles with blutik-fav.png */
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-image: url('/assets/img/blutik-fav.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-proof {
    color: var(--accent-green);
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* About Story Section */
.about-story {
    background-color: var(--white);
}

.content-main {
    padding-right: 2rem;
}

.stat-card {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.stat-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.stat-card p {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

/* Timeline Section */
.founding-story {
    background-color: var(--neutral-light);
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    font-size: 2rem;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Future Vision */
.future-vision {
    background-color: var(--white);
}

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

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

.feature-item {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Steps Section */
.how-it-works {
    background-color: var(--white);
}

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

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.cta-section {
    text-align: center;
}

/* Categories Section */
.categories {
    background-color: var(--neutral-light);
}

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

.category-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.category-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.categories-note {
    text-align: center;
    font-style: italic;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--text-primary) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-end) 100%);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Application Process Section - CENTERED */
.application-process {
    background-color: var(--white);
    text-align: center;
}

.process-intro {
    max-width: 800px;
    margin: 0 auto;
}

.process-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--neutral-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
}

/* Forms - CENTERED */
.application-form {
    background-color: var(--neutral-light);
    text-align: center;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.application-form-element {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

fieldset {
    border: none;
    margin-bottom: 2rem;
    padding: 0;
}

legend {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding: 0;
}

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

label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--shadow-light);
}

small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Application Sidebar */
.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.criteria-card,
.benefits-card,
.support-card {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.criteria-card h3,
.benefits-card h3,
.support-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.criteria-card ul,
.benefits-card ul {
    list-style: none;
    padding: 0;
}

.criteria-card li,
.benefits-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.criteria-card li:last-child,
.benefits-card li:last-child {
    border-bottom: none;
}

/* Footer */
.site-footer {
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

.footer-nav h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.contact-email a {
    color: var(--accent-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.trust-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.trust-badge,
.aussie-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .process-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .three-column,
    .four-column {
        grid-template-columns: 1fr;
    }
    
    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--border-light);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .primary-nav.mobile-open {
        display: block;
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .primary-nav li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .primary-nav li:last-child {
        border-bottom: none;
    }
    
    .primary-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .application-form-element {
        padding: 1.5rem;
    }
    
    .criteria-card,
    .benefits-card,
    .support-card {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

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

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}