/* Who We Are Page Styles */

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* Hero Section - The Sisu Way */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/City.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.15);
    animation: fadeInZoomOut 1.2s ease-out forwards;
    z-index: 0;
}

@keyframes fadeInZoomOut {
    from {
        opacity: 0;
        transform: scale(1.15);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 136px 136px 136px;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 10vh;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #191970;
    margin: 0 0 5px 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
}

.title-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(28%) saturate(1156%) hue-rotate(107deg) brightness(92%) contrast(87%);
}

.hero-title-underline {
    width: 100%;
    height: 1px;
    background: #191970;
    margin: 20px 0;
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.scroll-arrow {
    width: 66px;
    height: 66px;
    background: transparent;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 7px;
}

.scroll-arrow-icon {
    width: 34px;
    height: 34px;
    animation: bounceArrow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    display: block;
    margin: auto;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    45% {
        transform: translateY(-15px);
        animation-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53);
    }
    65% {
        transform: translateY(0);
    }
}

/* Arrow line animations */
.arrow-line-left {
    animation: closeLeft 1.5s ease-in-out infinite;
    transform-origin: 12px 16px;
}

.arrow-line-right {
    animation: closeRight 1.5s ease-in-out infinite;
    transform-origin: 12px 16px;
}

.arrow-line-center {
    animation: pulseCenter 1.5s ease-in-out infinite;
}

@keyframes closeLeft {
    0%, 50%, 100% {
        transform: rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: rotate(45deg);
        opacity: 0.8;
    }
}

@keyframes closeRight {
    0%, 50%, 100% {
        transform: rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: rotate(-45deg);
        opacity: 0.8;
    }
}

@keyframes pulseCenter {
    0%, 50%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.9;
    }
}

.scroll-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Our Approach Section */
.approach-section {
    background-image: url('../images/Mountain-Midnight-and-Twilight-Blue-Overlay.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 136px 80px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.approach-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    width: 40%;
    height: auto;
    background: #2E8B57;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.approach-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 136px;
    height: 100%;
    background: #2E8B57;
    z-index: 1;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    transition: transform 0.8s ease;
}

.approach-image:hover img {
    transform: scale(1.4) translateY(-50px);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.image-placeholder svg {
    opacity: 0.3;
    stroke: #FFFFFF;
}

.approach-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.section-underline {
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    margin: 20px 0;
}

.section-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    width: 90%;
}

/* Our Philosophy Section */
.philosophy-section {
    background-image: url('../images/Mountain-Midnight-and-Twilight-Blue-Overlay.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    transform: scaleX(-1);
}

.philosophy-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    transform: scaleX(-1);
}

.philosophy-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 80px 60px 80px 136px;
    justify-content: center;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.philosophy-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.philosophy-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(500%) hue-rotate(110deg) brightness(95%) contrast(85%);
    flex-shrink: 0;
}

.philosophy-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
}

.philosophy-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: #0A1628;
    overflow: hidden;
}


.philosophy-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInOut 15s ease-in-out infinite;
}

.philosophy-img-1 {
    animation-delay: 0s;
}

.philosophy-img-2 {
    animation-delay: 5s;
}

.philosophy-img-3 {
    animation-delay: 10s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    6.66% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 0;
    }

    .hero-content {
        padding: 0 4rem 80px 4rem;
    }

    .approach-section {
        padding: 60px 4rem 60px 0;
    }

    .philosophy-section {
        padding: 60px 0 60px 4rem;
    }

    .approach-image::before {
        width: 4rem;
    }
}

@media (max-width: 968px) {
    .approach-container {
        flex-direction: column-reverse;
    }

    .philosophy-container {
        flex-direction: column;
    }

    .approach-image,
    .approach-content,
    .philosophy-content {
        width: 100%;
    }

    .philosophy-content {
        padding: 4rem;
    }

    .philosophy-image {
        position: relative;
        width: 100%;
        height: 400px;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .approach-image {
        min-height: 400px;
    }

    .approach-image::before {
        width: 4rem;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0;
    }

    .hero-content {
        padding: 0 2rem 60px 2rem;
    }

    .hero-title {
        font-size: 32px;
    }

    .title-icon {
        width: 40px;
        height: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .scroll-arrow {
        width: 56px;
        height: 56px;
    }

    .scroll-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .scroll-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 18px;
    }

    .approach-section {
        padding: 40px 2rem;
    }

    .philosophy-section {
        padding: 40px 2rem;
    }

    .approach-image::before {
        width: 2rem;
    }

    .philosophy-items {
        margin-top: 30px;
        gap: 25px;
    }

    .philosophy-icon {
        width: 28px;
        height: 28px;
    }

    .philosophy-text {
        font-size: 16px;
    }

    .philosophy-content {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0;
    }

    .hero-content {
        padding: 0 1rem 40px 1rem;
    }

    .hero-title {
        font-size: 28px;
        gap: 10px;
    }

    .title-icon {
        width: 32px;
        height: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .scroll-arrow {
        width: 48px;
        height: 48px;
    }

    .scroll-arrow-icon {
        width: 24px;
        height: 24px;
    }

    .scroll-text {
        font-size: 18px;
    }

    .approach-section {
        padding: 30px 1rem;
    }

    .philosophy-section {
        padding: 30px 1rem;
    }

    .approach-image::before {
        width: 1rem;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .philosophy-content {
        padding: 1rem 0;
    }
}
