﻿/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f3f6f8;
    color: #1e293b;
    padding-top: 70px; /* Space for fixed header */
}

/* HERO SECTION */
.hero {
    padding: 48px clamp(16px, 5vw, 60px) 40px;
    background: linear-gradient(160deg, #f3f6f8 0%, rgba(224, 242, 241, 0.58) 52%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #1e293b;
}

.hero h1 span {
    color: #0e6f6f;
}

.hero p {
    font-size: 15px;
    color: #0e6f6f;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #0e6f6f;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #0e6f6f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MENTOR DIRECTORY - Full Width Layout */
.mentor-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 16px;
}

.mentor-discovery-copy {
    padding: 8px 16px 56px;
}

.mentor-discovery-copy__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.mentor-discovery-copy__intro,
.mentor-copy-card,
.mentor-faq-strip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.mentor-discovery-copy__intro {
    padding: 24px 26px;
}

.mentor-discovery-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0e6f6f;
    margin-bottom: 10px;
}

.mentor-discovery-copy__intro h2,
.mentor-faq-strip__header h2 {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.15;
    color: #1e293b;
    margin-bottom: 12px;
}

.mentor-discovery-copy__intro p,
.mentor-copy-card p,
.mentor-faq-item p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.mentor-discovery-copy__grid,
.mentor-faq-strip__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mentor-copy-card,
.mentor-faq-item {
    padding: 22px;
}

.mentor-copy-card h3,
.mentor-faq-item h3 {
    font-size: 16px;
    line-height: 1.35;
    color: #1e293b;
    margin-bottom: 12px;
}

.mentor-copy-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.mentor-copy-card li {
    position: relative;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.mentor-copy-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20B2AA;
}

.mentor-copy-card--links {
    background: linear-gradient(160deg, rgba(224, 242, 241, 0.68), #ffffff 72%);
}

.mentor-copy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.mentor-copy-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(14, 111, 111, 0.08);
    border: 1px solid rgba(14, 111, 111, 0.18);
    color: #0e6f6f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.mentor-copy-links a:hover,
.mentor-faq-item a:hover {
    color: #0b5c5c;
}

.mentor-faq-strip {
    padding: 24px 26px 26px;
}

.mentor-faq-strip__header {
    margin-bottom: 18px;
}

.mentor-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

/* SESSION TIPS BANNER */
.session-tips-banner {
    background: #ffffff;
    border: 1px solid #e0f2f1;
    border-left: 4px solid #20B2AA;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tips-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.tips-banner-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.tips-banner-header:hover .tips-banner-title {
    color: #0e6f6f;
}

.tips-banner-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.15s;
}

.tips-banner-title i {
    color: #0e6f6f;
    font-size: 16px;
}

.tips-expand-cta {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(14, 111, 111, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.12), rgba(255, 255, 255, 0.95));
    color: #0e6f6f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 4px rgba(14, 111, 111, 0.08);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
    pointer-events: none;
}

.session-tips-banner.is-collapsed .tips-expand-cta {
    animation: tipsExpandPulse 2.6s ease-in-out infinite;
}

.session-tips-banner.is-collapsed .tips-banner-header:hover .tips-expand-cta {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.18), rgba(255, 255, 255, 0.98));
    box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.08), 0 6px 16px rgba(14, 111, 111, 0.10);
    border-color: rgba(14, 111, 111, 0.28);
}

.session-tips-banner:not(.is-collapsed) .tips-expand-cta {
    animation: none;
    background: rgba(14, 111, 111, 0.06);
    border-color: rgba(14, 111, 111, 0.12);
    box-shadow: none;
}

.tips-banner-body {
    overflow: hidden;
    max-height: 600px;
    padding-top: 14px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding-top 0.3s ease;
    opacity: 1;
}

.tips-banner-body.collapsed {
    max-height: 0;
    padding-top: 0;
    opacity: 0;
}

.tips-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tips-col {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #e0f2f1;
}

.tips-col--do {
    background: #e0f2f1;
    border-color: #e0f2f1;
}

.tips-col--dont {
    background: #fff5f5;
    border-color: #fecaca;
}

.tips-col-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.tips-col-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.tips-col-icon--do {
    background: #20B2AA;
    color: #ffffff;
}

.tips-col-icon--dont {
    background: #f87171;
    color: #ffffff;
}

.tips-col-icon--schedule {
    background: #20B2AA;
    color: #ffffff;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tips-list li {
    font-size: 12.5px;
    color: #1e293b;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.4;
}

.tips-col--do .tips-list li i {
    color: #0e6f6f;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tips-col--dont .tips-list li i {
    color: #f87171;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

@keyframes tipsExpandPulse {
    0%,
    100% {
        background: linear-gradient(135deg, rgba(32, 178, 170, 0.12), rgba(255, 255, 255, 0.95));
        border-color: rgba(14, 111, 111, 0.18);
        box-shadow: 0 1px 4px rgba(14, 111, 111, 0.08);
    }

    45% {
        background: linear-gradient(135deg, rgba(32, 178, 170, 0.2), rgba(255, 255, 255, 0.98));
        border-color: rgba(14, 111, 111, 0.32);
        box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.07), 0 4px 12px rgba(14, 111, 111, 0.10);
    }

    60% {
        background: linear-gradient(135deg, rgba(32, 178, 170, 0.16), rgba(255, 255, 255, 0.97));
        border-color: rgba(14, 111, 111, 0.24);
        box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.05), 0 2px 8px rgba(14, 111, 111, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tips-expand-cta,
    .tips-banner-body {
        transition: none;
    }

    .session-tips-banner.is-collapsed .tips-expand-cta {
        animation: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .tips-banner-header {
        align-items: flex-start;
    }

    .tips-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .tips-expand-cta {
        padding: 0 12px;
    }

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

    .session-tips-banner {
        padding: 14px 16px;
    }
}

/* Horizontal Filter Bar */
.filters-bar {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid #e0f2f1;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Searchable Dropdown Styles */
.dropdown-wrapper {
    position: relative;
}

.dropdown-input {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1px solid #e0f2f1;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.2s;
}

.dropdown-input:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(224, 242, 241, 0.5);
}

.dropdown-input::placeholder {
    color: #0e6f6f;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e6f6f;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s;
}

.dropdown-arrow.open {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0f2f1;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #e0f2f1;
    border-radius: 3px;
}

.dropdown-search {
    padding: 12px;
    border-bottom: 1px solid #e0f2f1;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1;
}

.dropdown-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0f2f1;
    border-radius: 8px;
    outline: none;
    font-size: 13px;
}

.dropdown-search input:focus {
    border-color: #20B2AA;
}

.dropdown-options {
    padding: 8px;
}

.dropdown-option {
    padding: 10px 12px;
    font-size: 14px;
    color: #0e6f6f;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-option:hover {
    background: #e0f2f1;
    color: #0e6f6f;
}

.dropdown-option.selected {
    background: #e0f2f1;
    color: #0e6f6f;
    font-weight: 600;
}

.dropdown-group-header {
    font-size: 11px;
    font-weight: 700;
    color: #0e6f6f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 12px 6px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e6f6f;
    font-size: 14px;
}

.search-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e0f2f1;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: all 0.2s;
}

.search-input:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(224, 242, 241, 0.5);
}

.clear-filters-btn {
    padding: 10px 20px;
    background: #ffffff;
    color: #0e6f6f;
    border: 1.5px solid rgba(0, 139, 139, 0.22);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.clear-filters-btn:hover {
    transform: translateY(-2px);
    background: rgba(224, 242, 241, 0.6);
    border-color: rgba(0, 139, 139, 0.38);
    color: #0e6f6f;
    box-shadow: 0 14px 28px rgba(0, 139, 139, 0.14);
}

.clear-filters-btn:active {
    transform: scale(0.98);
}

/* Loading Animation */
.loading-container {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0f2f1;
    border-top: 4px solid #20B2AA;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #0e6f6f;
    font-size: 16px;
    font-weight: 500;
}

/* MENTOR GRID - Compact Cards */
.mentor-grid-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 20px;
}

.results-count {
    font-size: 14px;
    color: #0e6f6f;
    white-space: nowrap;
}

.results-count strong {
    color: #1e293b;
    font-weight: 700;
}

.results-guidance {
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(224, 242, 241, 0.72);
    border: 1px solid rgba(14, 111, 111, 0.14);
    color: #285e61;
    font-size: 13px;
    line-height: 1.45;
    justify-self: center;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
}

.sort-options {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid #e0f2f1;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

.mentor-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.mentor-pagination__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.mentor-pagination__summary {
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
}

.mentor-pagination__pages {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.mentor-pagination__button {
    min-width: 132px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(14, 111, 111, 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.12), rgba(255, 255, 255, 0.98));
    color: #0e6f6f;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mentor-pagination__button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(14, 111, 111, 0.12);
    border-color: rgba(14, 111, 111, 0.28);
}

.mentor-pagination__button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    box-shadow: none;
}

.mentor-card-new {
    background: linear-gradient(145deg, #ffffff 0%, rgba(224, 242, 241, 0.18) 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e0f2f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.mentor-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA, #e0f2f1);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mentor-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 139, 139, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #20B2AA;
}

.mentor-card-new:hover::before {
    opacity: 1;
}

.mentor-card-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

/* Clip wrapper — carries the border-radius and hides overflow from scale() */
.avatar-clip {
    overflow: hidden;
    flex-shrink: 0;
}
.avatar-clip.rounded-sm  { border-radius: 12px; }
.avatar-clip.rounded-full { border-radius: 50%; }

.mentor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f2f1, #e0f2f1);
    flex-shrink: 0;
    display: block;
}

.mentor-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mentor-info h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.mentor-degrees {
    font-size: 12px;
    color: #0e6f6f;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2px;
}

.mentor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.specialty-badge {
    background: #e0f2f1;
    color: #1e293b;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.slot-count-badge {
    background: rgba(32, 178, 170, 0.12);
    color: #0e6f6f;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slot-count-badge i {
    font-size: 10px;
}

.slot-count-badge.is-empty {
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
}

.mentor-card-new--no-slots {
    border-color: #dbe4ea;
}

.mentor-experience {
    font-size: 12px;
    color: #0e6f6f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mentor-experience i {
    color: #0e6f6f;
}

.mentor-desc {
    font-size: 13px;
    color: #0e6f6f;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mentor-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 12px;
    color: #0e6f6f;
    padding-top: 12px;
    border-top: 1px solid #e0f2f1;
}

.mentor-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mentor-meta-item i {
    color: #0e6f6f;
}

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 139, 139, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-book:hover {
    background: linear-gradient(135deg, #0e6f6f, #008B8B);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 139, 139, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mentor-retry-btn {
    margin-top: 16px;
    padding: 8px 24px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 22px rgba(0, 139, 139, 0.22);
}

.mentor-retry-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0e6f6f, #008B8B);
    box-shadow: 0 16px 30px rgba(0, 139, 139, 0.28);
}

/* FOOTER */
footer {
    background: #1e293b;
    color: #e0f2f1;
    padding: 48px 20px;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    transition: color 0.2s;
}

footer a:hover {
    color: #e0f2f1;
}

.disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    text-align: center;
    font-size: 12px;
    color: #0e6f6f;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .filter-controls {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .clear-filters-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .mentor-discovery-copy__grid,
    .mentor-faq-strip__items {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        grid-template-columns: 1fr 1fr;
    }

    .clear-filters-btn {
        grid-column: 1 / -1;
    }

    .mentor-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 900px) {
    .mentor-section {
        padding: 24px 16px;
    }

    .mentor-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .mentor-pagination__button {
        width: 100%;
        min-width: 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto;
    }

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

@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }

    .mentor-pagination {
        padding: 14px;
    }

    .mentor-pagination__summary {
        font-size: 13px;
    }

    .mentor-pagination__pages {
        font-size: 11px;
    }

    .mentor-discovery-copy__intro,
    .mentor-copy-card,
    .mentor-faq-strip,
    .mentor-faq-item {
        padding: 18px;
    }

    .mentor-copy-links {
        flex-direction: column;
    }

    .mentor-copy-links a {
        width: 100%;
        justify-content: center;
    }

    .mentor-grid-header {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .results-guidance {
        white-space: normal;
        border-radius: 14px;
    }

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

    .sort-options {
        width: 100%;
        justify-self: stretch;
    }

    .sort-options select {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .filter-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .results-guidance {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 16px 32px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .mentor-section {
        padding: 16px 12px;
    }

    .mentor-badges {
        gap: 6px;
    }
}
