/* ==========================================
   Custom Styles for MSP Website
   ========================================== */

/* Root Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #0dcaf0;
    
    /* Typography */
    --heading-color: #212529;
    --subheading-color: #495057;
    --body-color: #333333;
    --muted-color: #6c757d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--body-color);
    overflow-x: hidden;
}

/* ==========================================
   STANDARDIZED TYPOGRAPHY SYSTEM
   ========================================== */

/* Section Headers (H2) */
h2, .section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Section Subheaders (H3) */
h3, .section-subheader {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--subheading-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Card/Component Headers (H4) */
h4, .component-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
}

/* Intro/Lead Text */
.intro-text, .section-intro {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--muted-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Standard Body Text */
p, .body-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--body-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Small/Helper Text */
.small-text, small {
    font-size: 0.875rem;
    color: var(--muted-color);
    line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 991px) {
    h2, .section-header {
        font-size: 2rem;
    }
    
    h3, .section-subheader {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    h2, .section-header {
        font-size: 1.75rem;
    }
    
    h3, .section-subheader {
        font-size: 1.125rem;
    }
    
    .intro-text, .section-intro {
        font-size: 1rem;
    }
}

/* ==========================================
   END TYPOGRAPHY SYSTEM
   ========================================== */

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: transparent !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 77, 102, 0.35) 0%, rgba(0, 50, 80, 0.45) 100%), url('../images/hero-shark.png') center 40% / cover no-repeat;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 15rem !important;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    background: #0b5ed7;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--muted-color);
    line-height: 1.7;
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    display: inline-block;
}

/* Tech Stack Cards */
.tech-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    color: #0b5ed7;
}

.tech-icon i {
    display: inline-block;
}

/* Features Section */
.feature-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.feature-icon i {
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--muted-color);
    line-height: 1.7;
}

.feature-item:hover h3 {
    color: var(--primary-color);
}

/* Stats */
.stat-box {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.stat-box h3 {
    line-height: 1;
}

/* Contact Section */
.contact-info {
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info:hover .contact-icon {
    transform: scale(1.1);
    color: #0b5ed7;
}

.contact-icon i {
    display: inline-block;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Footer */
footer {
    margin-top: 4rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-icon {
        font-size: 8rem !important;
        margin-top: 2rem;
    }
    
    .hero-section {
        padding-top: 60px;
        background-position: center 35%;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.75rem;
        line-height: 1.3;
        margin-bottom: 2.5rem;
    }
    
    .hero-section h1 br {
        display: none;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-icon {
        font-size: 5rem !important;
    }
    
    .service-icon,
    .feature-icon,
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2.25rem;
        line-height: 1.35;
        margin-bottom: 2rem;
    }
    
    .hero-section {
        background-position: 60% 35%;
    }
    
    .hero-section .btn {
        padding: 0.85rem 2.25rem;
        font-size: 1.05rem;
    }
}

/* Intro Section - Highlight Box */
.intro-highlight {
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border-left: 5px solid #0d6efd;
}

.intro-highlight h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
}

.intro-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

/* Intro Section Typography */
.intro-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}


/* Comparison Accordion */
.comparison-accordion {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

/* Accordion Table-Style Header */
.accordion-table-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    padding: 1.5rem;
    text-align: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.comparison-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

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

.comparison-accordion .accordion-header {
    margin-bottom: 0;
}

.comparison-accordion .accordion-button {
    background: white;
    color: var(--heading-color);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.comparison-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e7f1ff 0%, #f0f7ff 100%);
    color: var(--primary-color);
    box-shadow: none;
}

.comparison-accordion .accordion-button:hover {
    background: #f8f9fa;
}

.comparison-accordion .accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #d9eaff 0%, #e7f1ff 100%);
}

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

.comparison-accordion .accordion-button i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.comparison-accordion .accordion-button:not(.collapsed) i {
    transform: scale(1.1);
}

.comparison-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.comparison-accordion .accordion-body {
    padding: 1.5rem;
    background: #fafbfc;
    border-top: 2px solid #e7f1ff;
}

.comparison-accordion .accordion-body h4 {
    font-weight: 600;
    font-size: 1rem;
}

.comparison-accordion .accordion-body p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-color);
}

/* Responsive Design for Accordion */
@media (max-width: 767px) {
    .comparison-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .comparison-accordion .accordion-button i {
        font-size: 1.25rem;
    }
    
    .comparison-accordion .accordion-body {
        padding: 1rem;
    }
    
    .comparison-accordion .accordion-body h4 {
        font-size: 0.9rem;
    }
    
    .comparison-accordion .accordion-body p {
        font-size: 0.9rem;
    }
}

/* Fit Cards (Right/Wrong Fit) */
.fit-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fit-card-header {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fit-card-header i {
    font-size: 1.5rem;
}

.right-fit-card {
    border: 2px solid #198754;
}

.right-fit-card .fit-card-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: white;
}

.right-fit-card .fit-card-body {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.right-fit-card .fit-card-body i {
    color: #198754;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.wrong-fit-card {
    border: 2px solid #dc3545;
}

.wrong-fit-card .fit-card-header {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: white;
}

.wrong-fit-card .fit-card-body {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.wrong-fit-card .fit-card-body i {
    color: #dc3545;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.fit-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.fit-card-body ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
}

.fit-card-body ul li i {
    flex-shrink: 0;
    font-size: 1.4rem;
    margin-top: 0.1rem;
    font-weight: bold;
}

/* Package Tier Cards */
.package-tier-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid;
}

.package-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-tier-header {
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.package-tier-header i {
    font-size: 3rem;
}

.package-tier-body {
    padding: 1.5rem;
    background: white;
}

/* Bronze Tier */
.bronze-tier {
    border-color: #cd7f32;
}

.bronze-tier .package-tier-header {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

/* Silver Tier */
.silver-tier {
    border-color: #c0c0c0;
}

.silver-tier .package-tier-header {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

/* Gold Tier */
.gold-tier {
    border-color: #ffd700;
}

.gold-tier .package-tier-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
}

/* Pain Point Cards */
.pain-point-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 4px solid #dc3545;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 3px 15px rgba(220, 53, 69, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pain-point-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.25);
    border-left-color: #b02a37;
}

.pain-point-icon {
    position: absolute;
    top: -20px;
    left: 15px;
    background: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}

.pain-point-icon i {
    font-size: 1.5rem;
}

.pain-point-card:hover .pain-point-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.pain-point-card p {
    margin-top: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

/* Smooth Animations */
.service-card,
.feature-item,
.stat-box,
.contact-info {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Fit Tabs (Right/Wrong Fit) */
.fit-tabs {
    border-bottom: none;
    gap: 0;
    display: flex;
    width: 100%;
}

.fit-tabs .nav-item {
    flex: 0 0 50%;
    width: 50%;
}

.fit-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fit-tabs .nav-link i {
    font-size: 1.5rem;
}

/* Right Fit Tab */
.right-fit-tab {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: white !important;
}

.right-fit-tab:hover {
    background: linear-gradient(135deg, #157347 0%, #0f5132 100%);
    transform: translateY(-2px);
}

.right-fit-tab.active {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    box-shadow: 0 -3px 20px rgba(25, 135, 84, 0.3);
}

/* Wrong Fit Tab */
.wrong-fit-tab {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: white !important;
}

.wrong-fit-tab:hover {
    background: linear-gradient(135deg, #bb2d3b 0%, #9a2530 100%);
    transform: translateY(-2px);
}

.wrong-fit-tab.active {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    box-shadow: 0 -3px 20px rgba(220, 53, 69, 0.3);
}

/* Tab Content */
.fit-tab-content {
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Ensure only active tab pane is visible - handle Bootstrap fade transitions */
.fit-tab-content .tab-pane {
    display: none !important;
}

.fit-tab-content .tab-pane.active.show {
    display: block !important;
}

.fit-tab-body {
    padding: 2.5rem;
}

/* Right Fit Body */
.right-fit-body {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 0 0 12px 12px;
}

.right-fit-body ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: #495057;
}

.right-fit-body ul li i {
    color: #198754;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-weight: bold;
}

/* Wrong Fit Body */
.wrong-fit-body {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 0 0 12px 12px;
}

.wrong-fit-body ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: #495057;
}

.wrong-fit-body ul li i {
    color: #dc3545;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-weight: bold;
}

/* Fit Mini-Cards */
.fit-mini-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fit-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.fit-mini-card i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.fit-mini-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Right Fit Mini-Cards */
.right-fit-mini-card {
    border: 2px solid #198754;
}

.right-fit-mini-card i {
    color: #198754;
}

.right-fit-mini-card:hover {
    border-color: #146c43;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Wrong Fit Mini-Cards */
.wrong-fit-mini-card {
    border: 2px solid #dc3545;
}

.wrong-fit-mini-card i {
    color: #dc3545;
}

.wrong-fit-mini-card:hover {
    border-color: #b02a37;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

/* Responsive Tabs */
@media (max-width: 767px) {
    .fit-tabs .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .fit-tabs .nav-link i {
        font-size: 1.25rem;
    }
    
    .fit-tab-body {
        padding: 1.5rem;
    }
    
    .fit-mini-card {
        padding: 1.25rem;
    }
    
    .fit-mini-card i {
        font-size: 2rem;
    }
    
    .fit-mini-card p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
}
