/* TEMPORARY: Hide Stray AI tab until ready for public */
.tab-button:nth-child(2) {
    display: none !important;
}

.tab-content#ai {
    display: none !important;
}

/* About Page Specific Styles */

/* Smaller Hero for Internal Pages */
.hero-small {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-small h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

/* Active Nav Link */
.nav-links a.active {
    color: #00D9FF;
}

/* Tab Navigation */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    background: linear-gradient(135deg, rgba(35, 41, 56, 0.8) 0%, rgba(26, 31, 46, 0.8) 100%);
    border: 2px solid rgba(0, 217, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-button:hover {
    border-color: rgba(0, 217, 255, 0.6);
    color: #00D9FF;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
    border-color: #00D9FF;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.tab-icon {
    font-size: 22px;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text h3 {
    font-size: 28px;
    color: #00D9FF;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 0;
}

.about-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF6B4A;
    font-weight: bold;
}

/* Expertise List */
.expertise-list li strong {
    color: #00D9FF;
    font-weight: 600;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, rgba(35, 41, 56, 0.6) 0%, rgba(26, 31, 46, 0.6) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 20px;
    color: #00D9FF;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.info-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: right;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(0, 217, 255, 0.15);
    color: #00D9FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

/* Quote */
.quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    border-left: 3px solid #FF6B4A;
    padding-left: 20px;
    margin: 0;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Company List */
.company-list {
    list-style: none;
    padding: 0;
}

.company-list li {
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-list li:last-child {
    border-bottom: none;
}

/* Competency List */
.competency-list {
    list-style: none;
    padding: 0;
}

.competency-list li {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}

.competency-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: bold;
}

/* Logo Card */
.logo-card {
    text-align: center;
}

.strayai-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.logo-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 136, 102, 0.1) 100%);
    border: 2px solid rgba(255, 107, 74, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
}

.cta-box h3 {
    color: #FF6B4A;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

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

    .about-sidebar {
        order: -1;
    }

    .hero-small h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 15px;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
    }

    .about-text h3 {
        font-size: 24px;
    }

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

@media (max-width: 480px) {
    .hero-small h1 {
        font-size: 32px;
    }

    .info-card {
        padding: 20px;
    }

    .cta-box {
        padding: 25px;
    }
}
