/* ==========================================================================
   VENTURES — Page-Specific Styles
   ========================================================================== */

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #171717;
    color: var(--white);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.project-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 16px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    border-color: var(--gray-900);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-nav-btn .icon {
    font-size: 24px;
}

/* Venture Sections */
.venture-section {
    padding: 150px 50px;
    position: relative;
    overflow: hidden;
}

.venture-section:nth-child(odd) {
    background: var(--gray-50);
}

.venture-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.venture-container.reverse {
    direction: rtl;
}

.venture-container.reverse > * {
    direction: ltr;
}

.venture-visual {
    position: relative;
}

.venture-card-visual {
    background: var(--white);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.venture-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.orbitech-visual::before {
    background: var(--orbitech-gradient);
}

.lbo-visual::before {
    background: var(--lbo-gradient);
}

.venture-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 30px;
}

.orbitech-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.lbo-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.venture-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.venture-card-tagline {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.orbitech-tagline {
    color: #0891b2;
}

.lbo-tagline {
    color: #ea580c;
}

.venture-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.venture-mini-stat {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.venture-mini-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.venture-mini-stat-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.floating-element {
    position: absolute;
    background: var(--white);
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

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

.floating-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

/* Venture Content */
.venture-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.venture-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.orbitech-subtitle {
    color: #0891b2;
}

.lbo-subtitle {
    color: #ea580c;
}

.venture-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.orbitech-feature-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.lbo-feature-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

.venture-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orbitech {
    background: var(--orbitech-gradient);
    color: var(--white);
}

.btn-orbitech:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.btn-lbo {
    background: var(--lbo-gradient);
    color: var(--white);
}

.btn-lbo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Philosophy Section */
.philosophy {
    padding: 150px 50px;
    background: #171717;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
}

.philosophy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.philosophy h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.philosophy-quote {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 30px;
}

.philosophy-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--accent);
    font-style: normal;
    line-height: 0;
    vertical-align: -20px;
    margin-right: 10px;
}

.philosophy-author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 150px 50px;
    background: var(--white);
    position: relative;
}

.cta-container,
.cta .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #171717;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Reveal Animations */




.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Dark Mode Overrides */
[data-theme="dark"] body {
    background: #0a0a0a;
    color: #fafafa;
}

[data-theme="dark"] .hero-badge {
    background: #1f1f1f;
    color: #fafafa;
}

[data-theme="dark"] .project-nav-btn {
    background: #141414;
    border-color: #2e2e2e;
    color: #fafafa;
}

[data-theme="dark"] .project-nav-btn:hover {
    border-color: #fafafa;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .venture-section:nth-child(odd) {
    background: #0a0a0a;
}

[data-theme="dark"] .venture-card-visual {
    background: #141414;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .venture-mini-stat {
    background: #0a0a0a;
}

[data-theme="dark"] .venture-mini-stat-value {
    color: #fafafa;
}

[data-theme="dark"] .floating-element {
    background: #1f1f1f;
    color: #fafafa;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .venture-card-title {
    color: #fafafa;
}

[data-theme="dark"] .venture-section:nth-child(even) {
    background: #0f0f0f;
}

[data-theme="dark"] .venture-content h2 {
    color: #fafafa;
}

[data-theme="dark"] .venture-description {
    color: #d4d4d4;
}

[data-theme="dark"] .feature-content h4 {
    color: #fafafa;
}

[data-theme="dark"] .feature-content p {
    color: #d4d4d4;
}

[data-theme="dark"] .btn-secondary {
    color: #fafafa;
    border-color: #3f3f46;
}

[data-theme="dark"] .btn-secondary:hover {
    border-color: #fafafa;
}

[data-theme="dark"] .btn-ghost {
    color: #fafafa;
    border-color: #3f3f46;
}

[data-theme="dark"] .btn-ghost:hover {
    border-color: #fafafa;
}

[data-theme="dark"] .cta {
    background: #0a0a0a;
}

[data-theme="dark"] .cta h2 {
    color: #fafafa;
}

[data-theme="dark"] .cta p {
    color: #d4d4d4;
}

[data-theme="dark"] .btn-primary {
    background: #fafafa;
    color: #0a0a0a;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .venture-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .venture-container.reverse {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: 60vh;
    }

    .project-nav {
        flex-direction: column;
    }

    .venture-section {
        padding: 80px 20px;
    }

    .venture-card-visual {
        padding: 30px;
    }

    .floating-element {
        display: none;
    }

    .philosophy {
        padding: 80px 20px;
    }

    .cta {
        padding: 80px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
