/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1d1d1f;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p, li, a {
    font-size: 1rem;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.logo {
    height: 68px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1d1d1f;
    transition: width 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1d1d1f;
    color: #ffffff;
    border: none;
}

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

/* Cards */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    flex-shrink: 0;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.member-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.member-expertise p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: #f5f5f7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1d1d1f;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-photo {
        margin-bottom: 1.5rem;
    }

    .member-connect {
        justify-content: center;
    }
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-medium);
}

.form-label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--cc-charcoal);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--cc-silver);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-body);
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--cc-navy);
    box-shadow: 0 0 0 2px rgba(10, 38, 71, 0.1);
}

.form-control.is-invalid {
    border-color: #dc2626;
    background: #fff5f5;
}

.invalid-feedback {
    display: none;
    font-size: var(--fs-small);
    color: #dc2626;
    margin-top: 4px;
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: var(--fs-small);
    font-weight: 500;
}

.badge-primary {
    background: var(--cc-navy);
    color: var(--cc-white);
}

.badge-secondary {
    background: var(--cc-silver);
    color: var(--cc-charcoal);
}

/* Alerts */
.alert {
    padding: var(--spacing-medium);
    border-radius: 4px;
    margin-bottom: var(--spacing-medium);
    font-size: var(--fs-body);
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fee2e2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--cc-white);
    border-radius: 8px;
    padding: var(--spacing-large);
    margin: auto;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cc-charcoal);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 1;
}

/* Loader */
.loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--cc-silver);
    border-radius: 50%;
    border-top-color: var(--cc-navy);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cc-charcoal);
    color: var(--cc-white);
    text-align: center;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: var(--fs-small);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Team Section Styles */
.team-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    flex-shrink: 0;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.member-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.member-expertise p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: #f5f5f7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1d1d1f;
}

.member-connect {
    display: flex;
    gap: 1rem;
}

.social-link, .contact-link {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link {
    background: #0077b5;
    color: white;
}

.contact-link {
    background: #f5f5f7;
    color: #1d1d1f;
}

.social-link:hover, .contact-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--cc-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-link {
    color: var(--cc-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-body);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cc-navy);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Team Page Styles */
.leadership-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-header h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

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

.profile-details h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.profile-details ul {
    list-style: none;
    padding: 0;
}

.profile-details li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.profile-links {
    display: flex;
    gap: 1rem;
}

.btn-linkedin {
    background-color: #0077b5;
    color: white;
}

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

.team-member {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.member-fun-fact {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.member-fun-fact span {
    color: var(--color-primary);
    font-weight: 600;
}

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

.join-us-content h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.join-us-content p {
    color: var(--color-text);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .leadership-profile {
        grid-template-columns: 1fr;
    }

    .profile-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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