/* Page-specific Styles */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8f4f8 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.08), transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-cyan);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    line-height: 1.8;
}

.pub-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.pub-stat {
    display: flex;
    flex-direction: column;
}

.pub-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.pub-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0;
}

.bg-alternate {
    background: var(--bg-light);
}

/* Research Page Styles */
.research-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.research-item {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
}

.featured-item {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, 
        rgba(30, 58, 95, 0.02), 
        rgba(0, 217, 255, 0.02));
}

.research-number {
    position: absolute;
    top: -20px;
    left: 3rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-cyan);
    opacity: 0.2;
}

.research-badge-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.research-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.research-status.active {
    background: rgba(0, 217, 255, 0.15);
    color: #0099b8;
}

.research-item h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.research-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.research-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.research-details {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-block h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.detail-block ul {
    list-style: none;
    padding: 0;
}

.detail-block ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.detail-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tags span {
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary-blue);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Interests Detailed */
.interests-detailed {
    display: grid;
    gap: 3rem;
}

.interest-detailed {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.interest-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.interest-icon-large {
    font-size: 3rem;
}

.interest-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0;
}

.interest-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.interest-topics h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.interest-topics ul {
    list-style: none;
    padding: 0;
}

.interest-topics ul li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--bg-cream);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 4px;
    line-height: 1.7;
}

.interest-topics strong {
    color: var(--primary-dark);
}

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

.methodology-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.methodology-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.method-number {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.methodology-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.methodology-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Tools Research */
.tools-research {
    background: white;
    padding: 3rem;
    border-radius: 16px;
}

.tools-categories {
    display: grid;
    gap: 2rem;
}

.tool-category h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Collaboration Info */
.collaboration-info {
    max-width: 900px;
    margin: 0 auto;
}

.collab-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.collab-areas {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.collab-areas h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.collab-areas ul {
    list-style: none;
    padding: 0;
}

.collab-areas ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.7;
}

.collab-areas ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.collab-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(30, 58, 95, 0.05), 
        rgba(0, 217, 255, 0.05));
    border-radius: 12px;
}

.collab-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Publications Page */
.publications-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.publication-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.publication-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.pub-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.pub-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.pub-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pub-status.submitted {
    background: rgba(244, 162, 97, 0.15);
    color: #d68a4f;
}

.pub-status.review {
    background: rgba(0, 217, 255, 0.15);
    color: #0099b8;
}

.pub-status.revision {
    background: rgba(255, 193, 7, 0.15);
    color: #d68a00;
}

.pub-status.draft {
    background: rgba(128, 128, 128, 0.15);
    color: #666;
}

.pub-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pub-authors {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.pub-venue {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.venue-name {
    color: var(--primary-blue);
    font-weight: 600;
    font-style: italic;
}

.venue-year {
    color: var(--text-light);
}

.pub-abstract {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pub-keywords {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.impact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Research Philosophy */
.philosophy-section {
    max-width: 1000px;
    margin: 0 auto;
}

.research-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-dark);
    border-left: 4px solid var(--accent-cyan);
    padding-left: 2rem;
    margin: 0 0 3rem 0;
    line-height: 1.8;
}

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

.principle {
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 8px;
}

.principle h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.principle p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Projects Page */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.project-showcase {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.project-badge-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.active {
    background: rgba(0, 217, 255, 0.15);
    color: #0099b8;
}

.project-status.completed {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.badge-fintech {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.project-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-timeline {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.project-overview h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.project-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.project-detail-block {
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 8px;
}

.project-detail-block h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.project-detail-block ul {
    list-style: none;
    padding: 0;
}

.project-detail-block ul li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.project-detail-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.project-outcomes {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.project-outcomes h4 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.progress-items {
    display: grid;
    gap: 1rem;
}

.progress-item {
    display: grid;
    gap: 0.5rem;
}

.progress-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

.outcome-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.outcome-card {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 8px;
    text-align: center;
}

.outcome-metric {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.outcome-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Academic Projects */
.academic-projects {
    display: grid;
    gap: 2rem;
}

.academic-project-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.academic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.academic-project-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.project-period {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.project-highlights {
    margin: 1.5rem 0;
}

.project-highlights strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
}

.project-highlights ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.project-highlights ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

/* Skills Comprehensive */
.skills-comprehensive {
    display: grid;
    gap: 2.5rem;
}

.skill-category-detailed {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.skill-category-detailed h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.skill-items {
    display: grid;
    gap: 1.2rem;
}

.skill-item {
    display: grid;
    gap: 0.5rem;
}

.skill-name {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.skill-level {
    height: 8px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

/* Experience Page */
.experience-timeline {
    position: relative;
    padding-left: 3rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--accent-cyan), 
        transparent);
}

.experience-item {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
}

.exp-timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--accent-cyan);
    border: 4px solid var(--bg-cream);
    border-radius: 50%;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
    gap: 2rem;
}

.exp-title-group h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.exp-title-group h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.exp-period {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.exp-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.exp-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.exp-responsibilities {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.exp-responsibilities li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.exp-responsibilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.exp-tech {
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.leadership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.leadership-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.leadership-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.leadership-card h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leadership-period {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.leadership-points {
    list-style: none;
    padding: 0;
}

.leadership-points li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.leadership-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Volunteer Experience */
.volunteer-experiences {
    display: grid;
    gap: 2.5rem;
}

.volunteer-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.volunteer-header {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.volunteer-icon {
    font-size: 3rem;
}

.volunteer-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.volunteer-info h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.volunteer-period {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.volunteer-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.volunteer-activities {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.volunteer-activities li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.volunteer-activities li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.2rem;
}

.volunteer-impact {
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Skills Developed */
.skills-developed {
    display: grid;
    gap: 2rem;
}

.skill-category-exp {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.skill-category-exp h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
}

.skill-tags-exp {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tags-exp span {
    padding: 0.6rem 1.2rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
}

.availability-info {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
}

.availability-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.availability-item {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    color: var(--text-gray);
}

.availability-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.availability-item strong {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-gray);
}

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

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

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-message {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Connect Options */
.connect-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.connect-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.connect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.connect-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.connect-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
}

.profile-link:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .pub-stats {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .pub-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }

    .exp-header {
        flex-direction: column;
        gap: 1rem;
    }

    .exp-period {
        white-space: normal;
    }

    .outcome-cards {
        flex-direction: column;
    }
}
