/* ================================================================================
   COMPONENTS.CSS - UI Components
   All component styles for navbar, hero, values, dual-path, philosophy, hub, footer
   ================================================================================ */

/* ===== 1-6: NAVIGATION BAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@supports (-webkit-touch-callout: none) {
    .navbar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    transition: all 0.3s;
    mix-blend-mode: difference;
    position: relative;
    z-index: 1001;
}

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

.nav-menu {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    display: block;
    transition: all 0.3s;
    mix-blend-mode: difference;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== 7-13: HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

/* Desktop: Position image down and to the right */
@media (min-width: 769px) {
    .hero-background {
        background-position: 50% 40%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(217, 119, 54, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    margin-bottom: 48px;
}

.scroll-indicator {
    color: var(--text-light);
    font-size: 0.875rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    z-index: 3;
    margin-top: 48px;
}

.scroll-indicator .arrow {
    font-size: 1.5rem;
    display: block;
}

/* ===== 14-15: SECTION TITLES ===== */
.introduction,
.core-values,
.navigation-hub {
    padding: 96px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 64px;
    text-align: center;
    color: var(--text-dark);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

/* ===== 16-20: VALUES TIMELINE ===== */
.values-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0;
}

/* Central flowing line */
.values-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary) 10%, 
        var(--secondary) 50%, 
        var(--accent) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    opacity: 1;
}

/* Alternate left/right */
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-right: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 32px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 32px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--text-light);
    border: 5px solid var(--primary);
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.4s;
}

.timeline-item:nth-child(2) .timeline-dot {
    border-color: var(--secondary);
}

.timeline-item:nth-child(3) .timeline-dot {
    border-color: var(--accent);
}

.timeline-item:nth-child(4) .timeline-dot {
    border-color: var(--primary);
}

.timeline-item:nth-child(5) .timeline-dot {
    border-color: var(--secondary);
}

.timeline-item:nth-child(6) .timeline-dot {
    border-color: var(--accent);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.4);
    box-shadow: 0 0 24px currentColor;
}

.timeline-content {
    flex: 1;
    background: var(--text-light);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
}

/* Arrow pointing to dot */
.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid var(--text-light);
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 16px solid var(--text-light);
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.timeline-item:nth-child(2) .timeline-content h3 {
    color: var(--secondary);
}

.timeline-item:nth-child(3) .timeline-content h3 {
    color: var(--accent);
}

.timeline-item:nth-child(4) .timeline-content h3 {
    color: var(--primary);
}

.timeline-item:nth-child(5) .timeline-content h3 {
    color: var(--secondary);
}

.timeline-item:nth-child(6) .timeline-content h3 {
    color: var(--accent);
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ===== 21-37: DUAL PATH SECTION ===== */
.dual-path {
    position: relative;
    height: 100vh;
    display: flex;
}

.path-container {
    display: flex;
    width: 100%;
}

.path-side {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    overflow: hidden;
}

.path-side:hover {
    flex: 1.2;
}

.path-side:hover + .path-side {
    flex: 0.8;
}

.path-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.path-side:hover .path-background {
    transform: scale(1.1);
}

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

.path-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.6s;
}

.path-side:hover .path-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.path-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    padding: 48px;
}

.path-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.path-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.path-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(217, 119, 54, 0.4);
}

.path-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--text-light);
}

.connector-line {
    width: 2px;
    height: 100px;
    background: var(--text-light);
    margin: 0 auto 16px;
}

.connector-text {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== 38-42: PHILOSOPHY STATEMENT ===== */
.philosophy-statement {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.statement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.statement-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 32px;
}

.statement-content blockquote {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* ===== 43-52: NAVIGATION HUB ===== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hub-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    transition: all 0.4s;
    transform-style: preserve-3d;
}

.hub-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hub-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.hub-card:hover .hub-card-background {
    transform: scale(1.15);
}

.hub-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: background 0.4s;
}

.hub-card:hover .hub-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hub-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--text-light);
    z-index: 2;
}

.hub-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.hub-card-content p {
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hub-arrow {
    font-size: 2rem;
    display: inline-block;
    transition: transform 0.3s;
    transform: translateX(0);
}

.hub-card:hover .hub-arrow {
    transform: translateX(10px);
}

/* ===== 53-59: FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 64px 0 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.7;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ================================================================================
   MODELING PAGE STYLES
   ================================================================================ */

/* Modeling Hero */
.modeling-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modeling Philosophy Section */
.modeling-philosophy {
    padding: 96px 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.philosophy-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.philosophy-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.philosophy-image:hover img {
    transform: scale(1.05);
}

/* What I Bring Section */
.what-i-bring {
    padding: 96px 0;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.capability-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(217, 119, 54, 0.2);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.capability-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Circular/Radial Layout for Capabilities */
.capabilities-circular {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 80px auto;
    padding: 100px 0;
    min-height: 900px;
}

/* Center Circle */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(217, 119, 54, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.center-content {
    text-align: center;
    color: white;
}

.center-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.center-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Orbiting Cards */
.capability-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
}

.capability-card-circular {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.capability-card-circular:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(217, 119, 54, 0.25);
    z-index: 5;
}

.capability-card-circular .capability-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.capability-card-circular h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.capability-card-circular p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Position each card in a circle - 6 cards at 60-degree intervals */
.capability-orbit-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg);
}

.capability-orbit-2 {
    transform: translate(-50%, -50%) rotate(60deg) translateX(350px) rotate(-60deg);
}

.capability-orbit-3 {
    transform: translate(-50%, -50%) rotate(120deg) translateX(350px) rotate(-120deg);
}

.capability-orbit-4 {
    transform: translate(-50%, -50%) rotate(180deg) translateX(350px) rotate(-180deg);
}

.capability-orbit-5 {
    transform: translate(-50%, -50%) rotate(240deg) translateX(350px) rotate(-240deg);
}

.capability-orbit-6 {
    transform: translate(-50%, -50%) rotate(300deg) translateX(350px) rotate(-300deg);
}

/* Pulse animation for center circle */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 32px rgba(217, 119, 54, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 40px rgba(217, 119, 54, 0.4);
    }
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 96px 0;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.gallery-zoom-icon {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 32px;
}

.lightbox-next {
    right: 32px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    cursor: pointer;
}

.lightbox-credits {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-credits.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-credits strong {
    font-weight: 500;
    color: var(--primary);
}

/* Location Section */
.location-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.location-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 32px;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.location-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Modeling CTA */
.modeling-cta {
    padding: 96px 0;
    background: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.cta-button-large {
    padding: 20px 60px;
    font-size: 1.125rem;
}

/* ================================================================================
   TAILORED INTELLIGENCE PAGE STYLES
   ================================================================================ */

/* Tech Hero Section */
.tech-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.tech-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(217,119,54,0.2), rgba(74,124,126,0.2));
    background-size: 200% 200%;
}

.gradient-animated {
    animation: gradientShift 15s ease infinite;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 32px;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 12px;
    font-weight: 700;
    background: rgba(217, 119, 54, 0.1);
    box-shadow: 0 0 20px rgba(217, 119, 54, 0.3);
}

.hero-sublabel {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 32px;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
}

.typewriter {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 64px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 64px;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.8;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

/* Vision Section */
.vision-section {
    padding: 128px 0;
    background: var(--bg-light);
    position: relative;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.3;
}

.vision-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.vision-value-box {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vision-value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon-tech {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.vision-value-box h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.vision-value-box p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

.vision-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}

/* Orbit System */
.orbit-system {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background: transparent;
    border: none;
}

.orbit-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(217,119,54,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

/* AI Core */
.ai-core {
    position: relative;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(217,119,54,0.6),
        inset 0 0 20px rgba(255,255,255,0.3);
    animation: corePulse 3s ease-in-out infinite;
}

.core-center span {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    letter-spacing: 2px;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(217,119,54,0.4);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.core-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.core-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    animation-delay: 1.5s;
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(217,119,54,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-2 {
    width: 380px;
    height: 380px;
    animation: rotateOrbit 20s linear infinite reverse;
}

.orbit-3 {
    width: 480px;
    height: 480px;
    animation: rotateOrbit 25s linear infinite;
}

/* Satellites */
.satellite {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, white 0%, rgba(217,119,54,0.2) 100%);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 
        0 8px 32px rgba(217,119,54,0.4),
        0 0 0 2px var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.satellite:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 12px 48px rgba(217,119,54,0.6),
        0 0 0 3px var(--primary);
    z-index: 20;
}

.satellite p {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.satellite p {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Particle Trails */
.particle-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--primary);
    animation: trailPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.satellite-1 .particle-trail {
    animation-delay: 0s;
}

.satellite-2 .particle-trail {
    animation-delay: 0.7s;
}

.satellite-3 .particle-trail {
    animation-delay: 1.4s;
}

/* Building Section */
.building-section {
    padding: 128px 0;
    background: white;
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-card {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(217,119,54,0.2);
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.solution-card:hover::before {
    transform: scaleY(1);
}

.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.solution-icon {
    font-size: 2.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
    opacity: 0.9;
}

.solution-tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tag {
    display: inline-block;
    padding: 6px 16px;
    background: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Journey Section */
.journey-section {
    padding: 128px 0;
    background: var(--text-dark);
    position: relative;
}

.journey-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(45deg, var(--primary) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary) 25%, transparent 25%);
    background-size: 60px 60px;
}

.journey-section .section-label {
    color: var(--primary);
}

.journey-section .section-title {
    color: white;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 64px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.journey-section .timeline-item {
    position: relative;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
}

.journey-section .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.journey-section .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 32px;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.journey-section .timeline-content {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.journey-section .timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.journey-section .timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Bridge Section */
.bridge-section {
    padding: 128px 0;
    background: linear-gradient(135deg, var(--bg-light), white);
}

.bridge-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bridge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.bridge-left,
.bridge-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 24px 48px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bridge-connector {
    font-size: 3rem;
    color: var(--primary);
    animation: rotate 10s linear infinite;
}

.bridge-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.bridge-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    padding: 128px 0;
    background: white;
}

.team-unified {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 64px;
}

.team-photo {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-member h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-member .team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-member .team-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

/* Company Link Section */
.company-link-section {
    padding: 128px 0;
    background: var(--bg-light);
}

.company-link-card {
    background: white;
    border-radius: 16px;
    padding: 64px;
    text-align: center;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.company-link-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217,119,54,0.1), transparent);
    transition: left 0.6s ease;
}

.company-link-card:hover::before {
    left: 100%;
}

.company-link-content {
    position: relative;
    z-index: 2;
}

.company-link-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.company-link-content p {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.company-note {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 40px !important;
}

.cta-button-light {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button-light:hover {
    background: var(--primary);
    color: white;
}

.external-icon {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .external-icon {
    transform: translateX(5px);
}

/* Tech CTA Section */
.tech-cta {
    position: relative;
    padding: 128px 0;
    background: var(--text-dark);
    overflow: hidden;
}

.tech-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.tech-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.tech-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.tech-cta .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: white;
    opacity: 0.9;
}
