/* ============================================
   MICHOSMS Landing Page Styles
   ============================================ */

/* ============================================
   1. ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #0f4c75;
    --secondary-color: #1b9aaa;
    --accent-color: #3282b8;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --light-bg: #fafbfc;
    --white-color: #ffffff;
    --gray-color: #5a6c7d;
    --gray-light: #8b9db0;
    --success-color: #28a745;
    --warning-color: #f39c12;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* ============================================
   2. GLOBAL STYLES
   ============================================ */
body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(27, 154, 170, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   3. NAVIGATION STYLES
   ============================================ */
.navbar {
    transition: var(--transition-base);
    padding: 1rem 0;
    background-color: var(--white-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: var(--transition-base);
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 600;
    color: var(--gray-color);
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    transition: var(--transition-base);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.navbar-spacer {
    height: 76px;
}

.user-profile-link {
    background-color: var(--light-color);
    transition: var(--transition-base);
    border-radius: 50px;
}

.user-profile-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.user-dropdown {
    animation: slideDown 0.3s ease;
    border-radius: var(--border-radius-lg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-bg-circle-1 {
    width: 400px;
    height: 400px;
    background-color: var(--white-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-bg-circle-2 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.hero-bg-square-1 {
    width: 200px;
    height: 200px;
    background-color: var(--white-color);
    border-radius: 20%;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.hero-bg-square-2 {
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    border-radius: 20%;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.floating {
    animation: floatElement 6s ease-in-out infinite;
}
@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: var(--transition-base);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-image-wrapper {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.hero-icon {
    font-size: 10rem;
    color: var(--primary-color);
}

.hero-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   5. FEATURE SECTION
   ============================================ */
.features-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.feature-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-base);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.15);
    border-color: var(--accent-color);
    background: var(--white-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white-color);
    transition: var(--transition-base);
    box-shadow: 0 8px 20px rgba(15, 76, 117, 0.25);
}

.feature-icon i {
    font-size: 2.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(15, 76, 117, 0.35);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ============================================
   6. CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* ============================================
   7. BUTTON STYLES
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    border: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
}

.btn-light {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: var(--white-color);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ============================================
   8. FOOTER STYLES
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    padding: 4rem 0 0;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-list li i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1.25rem;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.copyright-bar {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   9. CARD STYLES
   ============================================ */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
    background-color: var(--white-color);
}

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

/* ============================================
   10. PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.pricing-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 117, 0.2);
    border-color: var(--accent-color);
}

.pricing-card-featured {
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(27, 154, 170, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    z-index: 2;
}

.pricing-card-header {
    padding: 2.5rem 2rem;
    color: var(--white-color);
    text-align: center;
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.benefits-card {
    background: linear-gradient(135deg, var(--white-color), var(--light-bg));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.25);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-xl);
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.3);
}

/* ============================================
   11. LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.legal-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
}

.legal-icon {
    font-size: 4rem;
    color: var(--primary-color);
}

.legal-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.legal-section-header {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.legal-subsection-header {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content {
    color: var(--gray-color);
    line-height: 1.8;
}

.legal-intro {
    color: var(--dark-color);
    font-size: 1.125rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--light-bg), rgba(50, 130, 184, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-color);
}

/* ============================================
   12. AUTH PAGES
   ============================================ */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white-color) 100%);
}

.auth-card {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.form-floating > label {
    color: var(--gray-color);
}

.form-control {
    border-color: #e1e8ed;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 117, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================
   13. UTILITIES
   ============================================ */
.bg-gradient-light {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white-color) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--gray-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* ============================================
   14. RESPONSIVE STYLES
   ============================================ */

/* Page Header Section */
/* ===============================================
   9. PAGE HEADERS
   =============================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Header Wave */
.page-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.page-header-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.page-header-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Decorative Circles for Headers */
.page-header-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

/* Team Card Styles */
.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.team-card-header {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 117, 0.2);
    border-color: var(--accent-color);
}

.team-card-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.team-card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: var(--white-color);
}

.team-card-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card-role {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(27, 154, 170, 0.3);
}

.team-card-bio {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.team-card-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
}

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

.team-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.team-social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.2);
}

.team-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.team-cta-btn {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--white-color);
        padding: 1rem;
        border-radius: var(--border-radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   15. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   16. ACCORDION STYLES
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--light-bg);
    color: var(--gray-color);
    line-height: 1.7;
}

.accordion-body a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.accordion-body a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
