/* Investment Approach Page Styles */
.approach-hero {
    height: 70vh;
    min-height: 700px;
    position: relative;
    background: url('../images/approach-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.approach-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.approach-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    background-size: 40px 40px;
    opacity: 0.35;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow-down {
    width: 30px;
    height: 30px;
    margin: 10px auto 0;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

/* Investment Design Section */
.investment-design {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto;
}

.quote-box-blue {
    background-color: #0f1e3e;
    padding: 3rem;
    position: relative;
    border-left: 4px solid var(--secondary);
}

.quote-box {
    background-color: var(--light-gray);
    padding: 3rem;
    position: relative;
    border-left: 4px solid var(--secondary);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: -2rem;
    opacity: 0.3;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quote-text-blue {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quote-underline {
    width: 100px;
    height: 2px;
    background: var(--secondary);
}

/* Principles Section */
.principles-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.principle-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(10, 26, 58, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 26, 58, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.principle-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Process Flow Section */
.process-section {
    padding: 6rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(10, 26, 58, 0.1);
    border-bottom: 1px solid rgba(10, 26, 58, 0.1);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary);
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--secondary);
    padding: 0 1rem;
}

.process-outcome {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--secondary);
    margin-top: 3rem;
    position: relative;
}

.process-outcome:before, .process-outcome:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.process-outcome:before {
    left: 0;
}

.process-outcome:after {
    right: 0;
}

/* Quiet Design Section */
.quiet-design {
    padding: 8rem 0;
    position: relative;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.ibex-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/ibex-silhouette.svg') no-repeat center center;
    opacity: 0.03;
    z-index: 1;
}

.quiet-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quiet-design h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.quiet-design p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.approach-cta {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-box {
        margin-top: 3rem;
    }
    
    .approach-hero h1 {
        font-size: 2.8rem;
    }
    
    .quiet-design h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .approach-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .principle-card {
        padding: 2rem;
    }
    
    .quiet-design {
        padding: 6rem 0;
    }
    
    .quiet-design h2 {
        font-size: 2rem;
    }
}