/* Inner Page Styles - Bold Authority */

/* Page Header */
.page-header {
    background-color: var(--color-bg-dark);
    /* Solid Black */
    padding: 200px 0 100px;
    text-align: center;
    border-bottom: 4px solid var(--color-brand-yellow);
    position: relative;
    overflow: hidden;
}

/* Geometric Pattern Background */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

.page-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: #e0e0e0;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.resource-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-brand-purple);
}

.resource-img {
    width: 100%;
    height: 240px;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    border-bottom: 4px solid var(--color-brand-yellow);
}

.resource-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--color-bg-dark);
    color: var(--color-brand-yellow);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 800;
    align-self: flex-start;
}

.resource-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--color-text-primary);
}

.resource-card p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    padding: 4rem 0;
}

.contact-info-item {
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.contact-info-item h3 {
    color: var(--color-brand-purple);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-brand-purple);
    box-shadow: 0 0 0 4px rgba(96, 0, 255, 0.1);
}

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

/* Free Assessment Form Container */
.assessment-form-container {
    background: #fff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border-top: 6px solid var(--color-brand-purple);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-header {
        padding: 160px 0 80px;
    }
}

/* Process Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-mission-box {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 3.5rem;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-brand-yellow);
    margin-top: 3rem;
}

.story-mission-box h3 {
    color: var(--color-brand-yellow);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Expertise Cards */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.expertise-card {
    padding: 3rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}